home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / kevoSource / keybuf.h < prev    next >
Text File  |  1993-03-13  |  569b  |  22 lines

  1. /* Kevo -- a prototype-based object-oriented language */
  2. /* (c) Antero Taivalsaari 1991-1993                   */
  3. /* Some parts (c) Antero Taivalsaari 1986-1988           */
  4. /* keybuf.h: Keyboard buffer operations                  */
  5.  
  6. /*     
  7.     These operations are suited mainly to event-driven systems, 
  8.     and thus may not be needed in all implementations of Kevo. 
  9. */
  10.  
  11. /* Keyboard buffer interface */
  12.  
  13. void     putToKeyBuffer();
  14. void    textToKeyBuffer();
  15. void    crsToKeyBuffer();
  16. void    numberToKeyBuffer();
  17. char     getFromKeyBuffer();
  18. void    removeFromKeyBuffer();
  19. void     eraseKeyBuffer();
  20. char*    lineAvailable();
  21.  
  22.